if ( DOWNLOAD_URL != "" && confirm( "It appears that you do not have the latest WildTangent WebDriver installed on your machine. Would you like to open a new window to download it?" ) )
open( DOWNLOAD_URL );
return;
}
// check if our jar has been loaded
if ( !sceneBuilder.canRunJava() )
{
alert( "Java requires you to restart your system when new components are installed. You will need to do this before running this application for the first time." );
return;
}
// Start the WT scene:
( builder = sceneBuilder ).load( WT );
window.onunload = new Function( "builder.unload();" );